@charset "UTF-8";


.navbar-nav li:after {
  content: "";
  width: 0;
  height: 5px;
  background: #094fb7;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}

.navbar-nav li:hover:after {
  width: 100%;
}




.navbar {
  /*width: 100%;*/
  /*height: 80px;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 2px 4px #ccc;
  box-shadow: 0 2px 4px #ccc;
  /*padding: 10px 0;*/
  background-color: #fff;
  position: fixed;
  /*right: 0;*/
  /*top: 0;*/
  z-index: 999;


}
  .navbar-nav {
    -webkit-transition: 1s;
    transition: 1s;
    
  }

 .navbar-nav>li {
  position: relative;
  padding: 0px 6px;
  list-style: none;
  background: #fff;
  float: center;
  text-align: center;
  color: #0000;
  font-size: 16px;
}

 .navbar-nav .navbar_active {
    background: #094fb7;

}

 .navbar-nav .navbar_active_a {

    color: aliceblue;
}


